		
	        /* This backgrounds */
        .bg-black {
            background-color: black;
        }
        
        /* This Nav */
        .nav-a {
            background-color: rgba(0, 0, 0, 0.7);
            /*padding: 1.3rem 0;*/
            z-index: 100;
        }
        
        .nav-link {
            font-size: 1.3rem;
            color: #fff;
        }
        
        .nav-item .welcome {
            color: #de0a07;
            font-size: 1.3rem;
            display: block;
            padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
            font-weight: var(--bs-nav-link-font-weight);
        }
        
        .nav-item .welcome:hover {
            color: #ffffff;
        }

        /* Parallax header style */

        .overlay {
            background-color: rgba(0, 0, 0, 0.7);
            height: 100%;
            width: 100%;
        }
        
        .slogan {
            height: 100%;
            width: 100%;
            align-items: center;
            justify-content: center;
            display: flex;
            color: white;
            text-align: center;  
            /*padding: 12rem 0;*/
        }

        .slogan-2 {
            /*height: 100%;
            width: 100%;*/
            align-items: center;
            justify-content: center;
            display: flex;
            text-align: center; 
            padding: 4rem 0;
        }


        .parallax-header {
            background-image: url('../img/bg-b.png');
            background-attachment: fixed;
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .parallax-header h1 {
            font-size: 5.2rem;
            font-weight: bold;
            font-family: monospace;
            text-shadow: 5px 5px 10px black;
        }
        
        .parallax-header .slogan p {
            font-size: 1.5rem;
        }
        /* Common Section Style */
        .section {
            padding: 60px 0;
        }
        .section-heading {
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-align: center;
            color: #de0a07;
            font-weight: bold;
            font-family: monospace;
            text-shadow: 5px 5px 10px black;
        }
        .section-content {
            font-size: 1.2rem;
            text-align: center;
            color: #ffffff;
        }
        
        
        /* Image carousel */
        
        .carousel {
            padding: 4rem 0;
        }
        
        .carousel-item img {
          object-fit: cover;
        }
            
        
        
        
        /* Footer */
        
        .footer {
            background-color: #343a40;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        .footer a {
            color: white;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
	
	
	
	
	
	
	
        .grid-view .card {
            width: 100%;
        }
        .table-view {
            width: 100%;
        }
        .table-view img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin-right: 20px;
        }

        .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .view-toggle {
            font-size: 1.5rem;
            cursor: pointer;
            margin-right: 10px;
        }
        .view-toggle.active {
            color: gray;
        }
              
        
         .file-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        /*
        .file-item {
            max-width: 100%;
            margin: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-align: center;
        }
        */
        
        .file-item {
            border-radius: 20px;
            text-align: center;
            border: 1px solid #ddd;
        }

        
        .file-item img {
            border-radius: 20px 20px 0 0;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .add-btn {
            margin: 10px 0;
            display: inline-block;
            padding: 8px 12px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .add-btn:disabled {
            background-color: #aaa;
        }